home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 11600 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  916 b 

  1. Path: news.uh.edu!usenet
  2. From: Sensarn <txs53132@bayou.uh.edu>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: 132x50 textmode
  5. Date: 15 Mar 1996 03:59:34 GMT
  6. Organization: AEtna Insurance Agency
  7. Message-ID: <4iapv6$mfu@masala.cc.uh.edu>
  8. References: <4i9r3m$muv@oslo-nntp.eunet.no>
  9. NNTP-Posting-Host: sip-16661.public-dialups.uh.edu
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 1.1 (Windows; U; 16bit)
  14.  
  15. blarsen@login.eunet.no (Bjorn Larsen) wrote:
  16. >Can anyone tell me how to set 132x50 text mode with C or c++ or asm ??
  17. >I have a ati mach 64 card..
  18. >In the reference it says 010ah = 132x50 ?
  19. >But how can i set it ??
  20. >
  21. >
  22.  
  23. You need VESA for that mode (try it anyway -- that's what I do):
  24.  
  25. asm {
  26.     mov ax,0x4f02
  27.     mov bx,0x10a
  28.     int 0x10
  29. }
  30.  
  31. -- 
  32. ______________________________
  33.  
  34. Steven Sensarn
  35. E-Mail - txs53132@bayou.uh.edu
  36. ______________________________
  37.  
  38.  
  39.